public PaymentsController(IHmsUnitOfWork unit) { _unit = unit; }
public ManagersController(IHmsUnitOfWork unit) { _unit = unit; }
public PersonService(IHmsUnitOfWork unit, IMapper mapper) { _unit = unit; _mapper = mapper; }
public HousesController(IHmsUnitOfWork unit) { _unit = unit; }
public HousesService(IHmsUnitOfWork unit, IMapper mapper, IPersonService personService) { _unit = unit; _mapper = mapper; _personService = personService; }
public PersonsController(IHmsUnitOfWork unit) { _unit = unit; }
public ExpensesController(IHmsUnitOfWork unit) { _unit = unit; }
public ServicesController(IHmsUnitOfWork unit) { _unit = unit; }
public ProvidersController(IHmsUnitOfWork unit) { _unit = unit; }
public SettlersController(IHmsUnitOfWork unit) { _unit = unit; }
public ProviderService(IHmsUnitOfWork unit, IMapper mapper) { _unit = unit; _mapper = mapper; }
public AddressesController(IHmsUnitOfWork unit) { _unit = unit; }
public ContactsController(IHmsUnitOfWork unit) { _unit = unit; }