Exemplo n.º 1
0
 public EditModel(IClientService clientService, IClientTypeService clientTypeService, IIdentificationTypeService identificationTypeService)
 {
     _clientTypeService         = clientTypeService;
     _identificationTypeService = identificationTypeService;
     _clientTypeService         = clientTypeService;
     _clientService             = clientService;
 }
Exemplo n.º 2
0
 public IdentificationTypesController(
     IIdentificationTypeService identificationTypeService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _identificationTypeService = identificationTypeService;
 }
Exemplo n.º 3
0
 public IdentificationTypesController(IIdentificationTypeService service)
 {
     _service = service;
 }
Exemplo n.º 4
0
 public IdentificationTypeController(IIdentificationTypeService identificationTypeService)
 {
     _identificationTypeService = identificationTypeService;
 }
Exemplo n.º 5
0
 public IdentificationTypeController()
 {
     _IIdentificationTypeService = new IdentificationTypeService();
     _IDataManipulation          = new DataManipulation();
 }