Example #1
0
 public ShowTimeServices(ApplicationDbContext ctx, IMasterDataServices setupSvc, IWordTextReplacementServices wordSvc)
     : base(ctx, setupSvc, wordSvc)
 {
 }
Example #2
0
 public TicketServices(IWordTextReplacementServices wordSvc) : base()
 {
     _wordSvc = wordSvc;
 }
Example #3
0
 public CrudServiceBase(ApplicationDbContext context, IMasterDataServices setupSvc, IWordTextReplacementServices wordSvc)
 {
     this.context  = context;
     this.SetupSvc = setupSvc;
     this._wordSvc = wordSvc;
 }