コード例 #1
0
 public StudentService(IModelDataAnnotationCheck modelDataAnnotationCheck,
                       IUnitOfWork unitOfWork,
                       IUniversityLocalContext universityLocalContext)
 {
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
     _unitOfWork             = unitOfWork;
     _universityLocalContext = universityLocalContext;
 }
コード例 #2
0
 public AddStudentPresenter(IErrorMessageView errorMessageView,
                            IUnitOfWork unitOfWork,
                            IModelDataAnnotationCheck modelDataAnnotationCheck,
                            IUniversityLocalContext universityLocalContext)
 {
     _studentService   = new StudentService(modelDataAnnotationCheck, unitOfWork, universityLocalContext);
     _teacherService   = new TeacherService(modelDataAnnotationCheck, universityLocalContext);
     _errorMessageView = errorMessageView;
 }
コード例 #3
0
 public RoleServices(IRoleRepository roleRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     this.roleRepository           = roleRepository;
     this.modelDataAnnotationCheck = modelDataAnnotationCheck;
 }
コード例 #4
0
 public HutangOperasionalServices(IHutangOperasionalRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #5
0
 public PembelianServices(IPembelianRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #6
0
 public TransactionServices(ITransactionRepositary transactionRepositary, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     _transactionRepositary    = transactionRepositary;
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
 }
コード例 #7
0
 public BarangServices(IBarangRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #8
0
 public UserServices(IUserRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo    = repo;
     _moelDAC = modelDAC;
 }
コード例 #9
0
 public CategoryService(ICategoryRepositary categoryRepositary, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     _categoryRepositary       = categoryRepositary;
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
 }
コード例 #10
0
 public TeacherService(IModelDataAnnotationCheck modelDataAnnotationCheck, IUniversityLocalContext universityLocalContext)
 {
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
     _universityLocalContext   = universityLocalContext;
 }
コード例 #11
0
 public RoleServices(IRoleRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #12
0
 public AccountServices(IAccountRepository repository, IModelDataAnnotationCheck dataAnnotationCheck)
 {
     this.repository          = repository;
     this.dataAnnotationCheck = dataAnnotationCheck;
 }
コード例 #13
0
 public EmployeeServices(IEmployeeRepository employeeRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     this.employeeRepository       = employeeRepository;
     this.modelDataAnnotationCheck = modelDataAnnotationCheck;
 }
コード例 #14
0
 public SubTipeServices(ISubTipeRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #15
0
 public FormActionServices(IFormActionRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #16
0
 public RestaurantServices(IRestaurantRepository restaurantRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
     _restaurantRepository     = restaurantRepository;
 }
コード例 #17
0
 public PenjualanReturnServices(IPenjualanReturnRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #18
0
 public TaskService(ITaskRepository taskRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     _taskRepository = taskRepository;
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
 }
コード例 #19
0
ファイル: BarangServices.cs プロジェクト: izhal27/demo_MVP
 public BarangServices(IBarangRepository barangRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     _barangRepository         = barangRepository;
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
 }
コード例 #20
0
 public PaycheckServices(IPaycheckRepository repository, IModelDataAnnotationCheck modelCheck)
 {
     this.repository = repository;
     this.modelCheck = modelCheck;
 }
コード例 #21
0
 public AppointmentService(IModelDataAnnotationCheck modelDataAnnotationCheck, IUnitOfWork unitOfWork)
 {
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
     _unitOfWork = unitOfWork;
 }
コード例 #22
0
 public KasAwalServices(IKasAwalRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #23
0
 public SatuanServices(ISatuanRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #24
0
 public PenyesuaianStokServices(IPenyesuaianStokRepository repo, IModelDataAnnotationCheck modelDAC)
 {
     _repo     = repo;
     _modelDAC = modelDAC;
 }
コード例 #25
0
 public DepartmentServices(IDepartmentRepository departmentRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     this._departmentRepository     = departmentRepository;
     this._modelDataAnnotationCheck = modelDataAnnotationCheck;
 }
コード例 #26
0
 public PenjualanServicesDataAccessTests(ITestOutputHelper testOutputHelper)
 {
     _modelDAC         = new ModelDataAnnotationCheck();
     _services         = new PenjualanServices(new PenjualanRepository(), _modelDAC);
     _testOutputHelper = testOutputHelper;
 }
コード例 #27
0
 public PayrollServices(IPayrollRepository repository, IModelDataAnnotationCheck modelData)
 {
     this.repository = repository;
     this.modelCheck = modelData;
 }
コード例 #28
0
 public LocationServices(ILocationRepository locationRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     this.locationRepository       = locationRepository;
     this.modelDataAnnotationCheck = modelDataAnnotationCheck;
 }
コード例 #29
0
ファイル: UserServices.cs プロジェクト: jelenic/OO_PROJECT
 public UserServices(IUserRepository userRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
     _userRepository           = userRepository;
 }
コード例 #30
0
ファイル: MealServices.cs プロジェクト: jelenic/OO_PROJECT
 public MealServices(IMealRepository mealRepository, IModelDataAnnotationCheck modelDataAnnotationCheck)
 {
     _modelDataAnnotationCheck = modelDataAnnotationCheck;
     _mealRepository           = mealRepository;
 }