Ejemplo n.º 1
0
 public PaymentsController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
Ejemplo n.º 2
0
 public ManagersController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
Ejemplo n.º 3
0
 public PersonService(IHmsUnitOfWork unit, IMapper mapper)
 {
     _unit   = unit;
     _mapper = mapper;
 }
 public HousesController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
Ejemplo n.º 5
0
 public HousesService(IHmsUnitOfWork unit, IMapper mapper, IPersonService personService)
 {
     _unit          = unit;
     _mapper        = mapper;
     _personService = personService;
 }
Ejemplo n.º 6
0
 public PersonsController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
Ejemplo n.º 7
0
 public ExpensesController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
Ejemplo n.º 8
0
 public ServicesController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
 public ProvidersController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
Ejemplo n.º 10
0
 public SettlersController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
Ejemplo n.º 11
0
 public ProviderService(IHmsUnitOfWork unit, IMapper mapper)
 {
     _unit   = unit;
     _mapper = mapper;
 }
Ejemplo n.º 12
0
 public AddressesController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }
Ejemplo n.º 13
0
 public ContactsController(IHmsUnitOfWork unit)
 {
     _unit = unit;
 }