示例#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;
 }