Ejemplo n.º 1
0
        public HomeController(BakeryContext db, IReconmended_based_data ireconmended, IRateResposibitory irateReposibitory, IRateDampMeanAl IRATEdampmean, IAppraiseAlgorthim iappraise, IPredictAL ipredict, IExcelrepository iexcel, IRateResposibitory irate, IUserRepository iuser, IMatrixParse imatrix, IBranchReposibitory ibranchrepository, ICategoryResponsibility categoryrepository, IBakeryReposibitory bkf, IBillDetailsReposibility billdetailsreposibility, IBillReposibility billreposibility)



        {
            this.db = db;
            this.ibranchrepository = ibranchrepository;
            bakeryreposibitory     = bkf;

            this.IRATEdampmean = IRATEdampmean;

            this.iratel    = irate;
            this.imatrix   = imatrix;
            this.iappraise = iappraise;

            this.categorysponsibility = categoryrepository;
            this.iuser                   = iuser;
            this.iexcel                  = iexcel;
            this.ireconmended            = ireconmended;
            this.billdetailsreposibility = billdetailsreposibility;
            this.billreposibility        = billreposibility;

            this.irateReposibitory = irateReposibitory;

            this.ipredict = ipredict;
        }
 public Reconmended_based_data(IBakeryReposibitory ibakery,IRateResposibitory irate, IBillReposibility ibill, IMatrixParse imatrix)
 {
     this.irate = irate;
     this.ibill = ibill;
     this.ibakery = ibakery;
     this.imatrix = imatrix;
 }
Ejemplo n.º 3
0
 public AccountManagerController(IBakeryReposibitory ibakery, IMatrixParse imatrix, IPredictAL ipredict, IUserRepository iuser, ILogRepository ilog, IAppraiseAlgorthim iappraise)
 {
     this.ilog      = ilog;
     this.iappraise = iappraise;
     this.iuser     = iuser;
     this.ipredict  = ipredict;
     this.ibakery   = ibakery;
     this.imatrix   = imatrix;
 }
Ejemplo n.º 4
0
 public PredictAL(IRateResposibitory irate, IMatrixParse imatrix, IBakeryReposibitory ibake)
 {
     this.ibake   = ibake;
     this.irate   = irate;
     this.imatrix = imatrix;
 }
Ejemplo n.º 5
0
 public AppraiseAlgorthim(IRateResposibitory irate, IMatrixParse imatrix, IPredictAL ipredict)
 {
     this.irate    = irate;
     this.ipredict = ipredict;
     this.imatrix  = imatrix;
 }