コード例 #1
0
 public PaymentsController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #2
0
 public ManagersController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #3
0
ファイル: PersonService.cs プロジェクト: AndriiStehura/HMS
 public PersonService(IHmsUnitOfWork unit, IMapper mapper)
 {
     _unit   = unit;
     _mapper = mapper;
 }
コード例 #4
0
 public HousesController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #5
0
 public HousesService(IHmsUnitOfWork unit, IMapper mapper, IPersonService personService)
 {
     _unit          = unit;
     _mapper        = mapper;
     _personService = personService;
 }
コード例 #6
0
 public PersonsController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #7
0
 public ExpensesController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #8
0
 public ServicesController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #9
0
 public ProvidersController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #10
0
 public SettlersController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #11
0
 public ProviderService(IHmsUnitOfWork unit, IMapper mapper)
 {
     _unit   = unit;
     _mapper = mapper;
 }
コード例 #12
0
 public AddressesController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
コード例 #13
0
 public ContactsController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }