public TextController(IStaticTextService staticTextService) { this.StaticTextService = staticTextService; }
public ManageTextHandler(IUnitOfWork pUoW, IStaticTextService pService) { this.iUoW = pUoW; this.iServ = pService; }
internal ManageTextHandler(IUnitOfWork pUoW, IStaticTextService pService) { this.iUoW = pUoW; this.iServ = pService; }
public ContactController(IStoreDetailService storeDetailsService, IStaticTextService staticTextService) { StoreDetailService = storeDetailsService; StaticTextService = staticTextService; }
public ShopController(IProductService productService, IProfileService profileService, IStaticTextService staticTextService) { this.ProductService = productService; this.ProfileService = profileService; this.StaticTextService = staticTextService; }
public ReviewsController(IReviewService reviewService, IProfileService profileService, IStaticTextService staticTextService) { this.ReviewService = reviewService; this.ProfileService = profileService; this.StaticTextService = staticTextService; }
public HomeController(IStaticTextService staticTextService) { this.StaticTextService = staticTextService; }