示例#1
0
 public ClientsController(IClientService clientService, IAdresseService adresseService, IQuartierService quartierService, IMapper mapper)
 {
     _clientService   = clientService;
     _adresseService  = adresseService;
     _quartierService = quartierService;
     _mapper          = mapper;
 }
示例#2
0
 public EmployeService(IEmployeRepository employeRepository, IUnitOfWork unitOfWork, IApplicationTraceService applicationTraceService, IAffectationServiceService affectationServiceService, IAdresseService adresseService, IUtilisateurService utilisateurService)
 {
     this._employeRepository         = employeRepository;
     this._applicationTraceService   = applicationTraceService;
     this._affectationServiceService = affectationServiceService;
     this._adresseService            = adresseService;
     this._utilisateurService        = utilisateurService;
     this._unitOfWork = unitOfWork;
 }
示例#3
0
 public PersonneService(IPersonneRepository personneRepository, IUnitOfWork unitOfWork, IApplicationTraceService applicationTraceService, IAdresseService adresseService, IEmployeService employeService, IUtilisateurService utilisateurService)
 {
     this._personneRepository      = personneRepository;
     this._applicationTraceService = applicationTraceService;
     this._adresseService          = adresseService;
     this._utilisateurService      = utilisateurService;
     this._employeService          = employeService;
     this._unitOfWork = unitOfWork;
 }
示例#4
0
 public CommandeController(ICdeCliService cdeCliService, IClientService clientService,
                           IPizzaService pizzaService, IMapper mapper, IQuartierService quartierService, IAdresseService adresseService)
 {
     _commandService  = cdeCliService;
     _clientService   = clientService;
     _pizzaService    = pizzaService;
     _quartierService = quartierService;
     _adresseService  = adresseService;
     _mapper          = mapper;
 }
 public EmployeController(IEmployeService employeService, IServiceService serviceService, IPersonneService personneService, IAdresseService adresseService, IDroitService droitService, ITEmployeService temployeService, IAffectationServiceService affectationService, IUtilisateurService utilisateurService)
 {
     this._employeService     = employeService;
     this._serviceService     = serviceService;
     this._adresseService     = adresseService;
     this._personneService    = personneService;
     this._droitService       = droitService;
     this._temployeService    = temployeService;
     this._affectationService = affectationService;
     this._utilisateurService = utilisateurService;
     this._service            = "Ressources Humaines";
 }
示例#6
0
 public ContactController(ApplicationDbContext context,
                          IMapper mapper,
                          IContactService service_contact,
                          IAdresseService service_adresse,
                          UserManager <IdentityUser> user_manager)
 {
     _context         = context;
     _mapper          = mapper ?? throw new ArgumentNullException(nameof(mapper));
     _service_contact = service_contact ?? throw new ArgumentNullException(nameof(service_contact));
     _service_adresse = service_adresse ?? throw new ArgumentNullException(nameof(service_adresse));
     _user_manager    = user_manager ?? throw new ArgumentNullException(nameof(user_manager));
 }
 public CommandeController(
     ApplicationDbContext context
     , UserManager <IdentityUser> user_manager
     , IMapper mapper
     , IArticleService service_article
     , ICommandeService service_commande
     , ICommandeFournisseurService service_commande_fournisseur
     , ICommandeLigneService service_commande_ligne
     , IContactService service_contact
     , IStockService service_stock
     , IAdresseService service_adresse)
 {
     _context                      = context;
     _user_manager                 = user_manager;
     _mapper                       = mapper;
     _service_article              = service_article;
     _service_commande             = service_commande;
     _service_commande_fournisseur = service_commande_fournisseur;
     _service_commande_ligne       = service_commande_ligne;
     _service_contact              = service_contact;
     _service_stock                = service_stock;
     _service_adresse              = service_adresse;
 }
 public TiersService(IAdresseService adresseService)
 {
     _adresseService = adresseService;
 }
 public AdresseController(IAdresseService adresseService)
 {
     this.adresseService = adresseService;
 }
示例#10
0
 public void Add_Adresse(IAdresseService a)
 {
 }