Exemple #1
0
 public ClientService(TESTFASContext dbcontext)
 {
     this.Dbcontext = dbcontext;
 }
 public FundService(TESTFASContext dbcontext)
 {
     this.Dbcontext = dbcontext;
 }
 public FundController(IFundService fundService, TESTFASContext dbContext)
 {
     this.DbContext   = dbContext;
     this.FundService = fundService;
 }