public DeleteReasonDao(DeleteReasonContext deleteReasonContext) { _deleteReasonContext = deleteReasonContext; deleteReasonIQ = _deleteReasonContext.DeleteReasons; }
public LoginManage(UserContext userContext, PhoneContext phoneContext, BrandContext brandContext, BrandTypeContext brandTypeContext, BrandTypeProductNoContext brandTypeProductNoContext, TypeYearContext typeYearContext, DeleteReasonContext deleteReasonContext) { _userContext = userContext; userIQ = _userContext.Users; phoneDao = new PhoneDao(phoneContext); brandDao = new BrandDao(brandContext); brandTypeDao = new BrandTypeDao(brandTypeContext); brandTypeProductNoDao = new BrandTypeProductNoDao(brandTypeProductNoContext); typeYearDao = new TypeYearDao(typeYearContext); deleteReasonDao = new DeleteReasonDao(deleteReasonContext); }
public LoginController(UserContext userContext, PhoneContext phoneContext, BrandContext brandContext, BrandTypeContext brandTypeContext, BrandTypeProductNoContext brandTypeProductNoContext, TypeYearContext typeYearContext, DeleteReasonContext deleteReasonContext) { loginManage = new LoginManage(userContext, phoneContext, brandContext, brandTypeContext, brandTypeProductNoContext, typeYearContext, deleteReasonContext); }
public DeletePhoneController(DeleteReasonContext deleteReasonContext) { deletePhoneManage = new DeletePhoneManage(deleteReasonContext); }
public DeletePhoneManage(DeleteReasonContext deleteReasonContext) { deleteReasonDao = new DeleteReasonDao(deleteReasonContext); }