コード例 #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;
        }
コード例 #2
0
 public Reconmended_based_data(IBakeryReposibitory ibakery,IRateResposibitory irate, IBillReposibility ibill, IMatrixParse imatrix)
 {
     this.irate = irate;
     this.ibill = ibill;
     this.ibakery = ibakery;
     this.imatrix = imatrix;
 }
コード例 #3
0
 public RatingDampMeanAl(IRateResposibitory irate, IBakeryReposibitory ibakery)
 {
     this.irate   = irate;
     this.ibakery = ibakery;
 }
コード例 #4
0
 public PredictAL(IRateResposibitory irate, IMatrixParse imatrix, IBakeryReposibitory ibake)
 {
     this.ibake   = ibake;
     this.irate   = irate;
     this.imatrix = imatrix;
 }
コード例 #5
0
 public RateController(IUserRepository iuser, IBakeryReposibitory ibakeryrepository, IRateResposibitory ratereposibitory)
 {
     this.ratereposibitory  = ratereposibitory;
     this.ibakeryrepository = ibakeryrepository;
     this.iuser             = iuser;
 }
コード例 #6
0
 public MatrixParse(IBakeryReposibitory ibakeryrepository, IRateResposibitory iraterepository)
 {
     this.ibakeryrepository = ibakeryrepository;
     this.iraterepository   = iraterepository;
 }
コード例 #7
0
 public AppraiseAlgorthim(IRateResposibitory irate, IMatrixParse imatrix, IPredictAL ipredict)
 {
     this.irate    = irate;
     this.ipredict = ipredict;
     this.imatrix  = imatrix;
 }