示例#1
0
 public IList <GetFlightDetails> GetFlightDetails(string FlightNumber, string TerminalCode)
 {
     return(EIA_DEVContext.LoadStoredProc("GetFlightDetails")
            .WithSqlParam("@FlightNumber", FlightNumber)
            .WithSqlParam("@TerminalCode", TerminalCode)
            .ExecuteStoredProc <GetFlightDetails>());
 }
示例#2
0
 public IList <GetForm1CheckStatus_result> GetIGMDetails(string IGMNumber, string MAWBNumber, string TerminalCode)
 {
     return(EIA_DEVContext.LoadStoredProc("GetForm1CheckStatus")
            .WithSqlParam("@IGMNumber", IGMNumber)
            .WithSqlParam("@MAWBNumber", MAWBNumber)
            .WithSqlParam("@TerminalCode", TerminalCode)
            .ExecuteStoredProc <GetForm1CheckStatus_result>());
 }
示例#3
0
 public IList <result> GetPassword(VSECGetPasswordByUserName vsecGetPasswordByUserName)
 {
     return(EIA_DEVContext.LoadStoredProc("proc_VSECGetPasswordByUserName")
            .WithSqlParam("@LoginID", vsecGetPasswordByUserName.LoginId)
            .WithSqlParam("@IpAddress", vsecGetPasswordByUserName.IPAddress)
            .WithSqlParam("@WebSessionID", vsecGetPasswordByUserName.WebsessionID)
            .WithSqlParam("@Mode", vsecGetPasswordByUserName.Mode)
            .ExecuteStoredProc <result>());
 }
示例#4
0
 public IList <VSECVerifyUser_Result> ValidateUser(VSECGetPasswordByUserName vsecGetPasswordByUserName)
 {
     return(EIA_DEVContext.LoadStoredProc("proc_VSECVerifyUser")
            .WithSqlParam("@LoginID", vsecGetPasswordByUserName.LoginId)
            .WithSqlParam("@password", vsecGetPasswordByUserName.Password)
            .WithSqlParam("@IpAddress", vsecGetPasswordByUserName.IPAddress)
            .WithSqlParam("@WebSessionID", vsecGetPasswordByUserName.WebsessionID)
            .WithSqlParam("@CultureID", DBNull.Value)
            .ExecuteStoredProc <VSECVerifyUser_Result>());
 }
示例#5
0
 public UserCreationCRUD(EIA_DEVContext eIA_DEVContext)
     : base(eIA_DEVContext)
 {
 }
示例#6
0
 public RepositoryBase(EIA_DEVContext eia_devContext)
 {
     this.EIA_DEVContext = eia_devContext;
 }
示例#7
0
 public VsecLogMst(EIA_DEVContext eIA_DEVContext)
     : base(eIA_DEVContext)
 {
 }
示例#8
0
 public RepositoryWrapper(EIA_DEVContext eIA_DEVContext)
 {
     _eIA_DEVContext = eIA_DEVContext;
 }
示例#9
0
 public LoginRepository(EIA_DEVContext eIA_DEVContext) : base(eIA_DEVContext)
 {
 }
 public VsecUserRoleMapRepository(EIA_DEVContext eIA_DEVContext)
     : base(eIA_DEVContext)
 {
 }
 public CommonMasterRepository(EIA_DEVContext eIA_DEVContext)
     : base(eIA_DEVContext)
 {
 }
示例#12
0
 public vseRoleMst(EIA_DEVContext eIA_DEVContext)
     : base(eIA_DEVContext)
 {
 }
示例#13
0
 public MAirlineMSTRepository(EIA_DEVContext eIA_DEVContext)
     : base(eIA_DEVContext)
 {
 }
示例#14
0
 public EntityDatabaseTransaction(EIA_DEVContext context)
 {
     _transaction = context.Database.BeginTransaction();
 }
示例#15
0
 public MFlightmasterMSTRepository(EIA_DEVContext eIA_DEVContext)
     : base(eIA_DEVContext)
 {
 }
 public MCouriermasterMSTRepository(EIA_DEVContext eIA_DEVContext)
     : base(eIA_DEVContext)
 {
 }