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