示例#1
0
 public PharmacyController(Services.PharmacyService pharSvr
                           , Services.AccessService accSvr
                           , DbContext.CHISEntitiesSqlServer db) : base(db)
 {
     _pharSvr = pharSvr;
     _accSvr  = accSvr;
 }
示例#2
0
 public ProductController()
 {
     _publisherService      = new Services.PublisherService();
     _catalogService        = new Services.CatalogService();
     _productService        = new Services.ProductService();
     _siteService           = new Services.SiteService();
     _sendGridService       = new Services.SendGridService();
     _activeCampaignService = new Services.ActiveCampaignService();
     _getResponseService    = new Services.GetResponseService();
     _accessService         = new Services.AccessService();
 }
示例#3
0
 public DoctorService(CHISEntitiesSqlServer db
                      , Services.AccessService accSvr) : base(db)
 {
     _accSvr = accSvr;
 }