예제 #1
0
 public PaymentsController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
예제 #2
0
 public ManagersController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
예제 #3
0
 public PersonService(IHmsUnitOfWork unit, IMapper mapper)
 {
     _unit   = unit;
     _mapper = mapper;
 }
 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;
 }
 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;
 }