C# Class VolTeer.DataAccessLayer.VT.Other.sp_Sample_Address_DAL

Mostrar archivo Open project: CISC181/VolTeerNET

Public Methods

Method Description
DeleteSampleAddress ( int addrID ) : void
DeleteSampleAddressContext ( sp_Sample_Address_Select_DM lSampleAddress ) : void
InsertSampleAddress ( string addrLine1, string addrLine2, string addrLine3, string city, string st, Nullable zip, Nullable zip4, Nullable activeFlg ) : void
InsertSampleAddressContext ( sp_Sample_Address_Select_DM lSampleAddress ) : void
InsertSampleAddressContext ( string addrLine1, string addrLine2, string addrLine3, string city, string st, Nullable zip, Nullable zip4, Nullable activeFlg ) : void
ListSampleAddress ( ) : List

Return a list of Sample addresses using LINQ to SQL

UpdateSampleAddress ( Nullable addrID, string addrLine1, string addrLine2, string addrLine3, string city, string st, Nullable zip, Nullable zip4, Nullable activeFlg ) : void

UpdateSampleAddress... Pass in each variable, hook each variable to the stored procedure, call the stored procedure directly

UpdateSampleAddressContext ( Nullable addrID, string addrLine1, string addrLine2, string addrLine3, string city, string st, Nullable zip, Nullable zip4, Nullable activeFlg ) : void

UpdateSampleAddressContext... Pass in each variable, hook each variable to the context, have the context execute the stored procedure

UpdateSampleAddressContext ( sp_Sample_Address_Select_DM lSampleAddress ) : void

UpdateSampleAddressContext... pass in an object of SampleAddress... assign the object variables to the context variables, call the update

Method Details

DeleteSampleAddress() public method

public DeleteSampleAddress ( int addrID ) : void
addrID int
return void

DeleteSampleAddressContext() public method

public DeleteSampleAddressContext ( sp_Sample_Address_Select_DM lSampleAddress ) : void
lSampleAddress VolTeer.DomainModels.VT.Other.sp_Sample_Address_Select_DM
return void

InsertSampleAddress() public method

public InsertSampleAddress ( string addrLine1, string addrLine2, string addrLine3, string city, string st, Nullable zip, Nullable zip4, Nullable activeFlg ) : void
addrLine1 string
addrLine2 string
addrLine3 string
city string
st string
zip Nullable
zip4 Nullable
activeFlg Nullable
return void

InsertSampleAddressContext() public method

public InsertSampleAddressContext ( sp_Sample_Address_Select_DM lSampleAddress ) : void
lSampleAddress VolTeer.DomainModels.VT.Other.sp_Sample_Address_Select_DM
return void

InsertSampleAddressContext() public method

public InsertSampleAddressContext ( string addrLine1, string addrLine2, string addrLine3, string city, string st, Nullable zip, Nullable zip4, Nullable activeFlg ) : void
addrLine1 string
addrLine2 string
addrLine3 string
city string
st string
zip Nullable
zip4 Nullable
activeFlg Nullable
return void

ListSampleAddress() public method

Return a list of Sample addresses using LINQ to SQL
public ListSampleAddress ( ) : List
return List

UpdateSampleAddress() public method

UpdateSampleAddress... Pass in each variable, hook each variable to the stored procedure, call the stored procedure directly
public UpdateSampleAddress ( Nullable addrID, string addrLine1, string addrLine2, string addrLine3, string city, string st, Nullable zip, Nullable zip4, Nullable activeFlg ) : void
addrID Nullable
addrLine1 string
addrLine2 string
addrLine3 string
city string
st string
zip Nullable
zip4 Nullable
activeFlg Nullable
return void

UpdateSampleAddressContext() public method

UpdateSampleAddressContext... Pass in each variable, hook each variable to the context, have the context execute the stored procedure
public UpdateSampleAddressContext ( Nullable addrID, string addrLine1, string addrLine2, string addrLine3, string city, string st, Nullable zip, Nullable zip4, Nullable activeFlg ) : void
addrID Nullable
addrLine1 string
addrLine2 string
addrLine3 string
city string
st string
zip Nullable
zip4 Nullable
activeFlg Nullable
return void

UpdateSampleAddressContext() public method

UpdateSampleAddressContext... pass in an object of SampleAddress... assign the object variables to the context variables, call the update
public UpdateSampleAddressContext ( sp_Sample_Address_Select_DM lSampleAddress ) : void
lSampleAddress VolTeer.DomainModels.VT.Other.sp_Sample_Address_Select_DM
return void