public UrunService(TaskestiDataContext context)
 {
     this.context = context;
 }
 public BayiService(TaskestiDataContext context)
 {
     this.context = context;
 }
 public PanelHomeService(TaskestiDataContext context)
 {
     this.context = context;
 }
 public EmailService(TaskestiDataContext context, IAuthService authService)
 {
     this.context = context;
     AuthService  = authService;
     user         = authService.GetIdentity();
 }
Beispiel #5
0
 public SiparisService(TaskestiDataContext context)
 {
     this.context = context;
 }
 public SayfaIcerikService(TaskestiDataContext context, IAuthService authService)
 {
     this.context     = context;
     this.authService = authService;
     user             = authService.GetIdentity();
 }
 public AuthService(TaskestiDataContext context)
 {
     this.context = context;
 }