コード例 #1
0
 public SMVGarmentByUnitReportFacade(IServiceProvider serviceProvider, SalesDbContext dbContext)
 {
     this.DbContext                   = dbContext;
     this.DbSet                       = this.DbContext.Set <CostCalculationGarment>();
     this.IdentityService             = serviceProvider.GetService <IdentityService>();
     this.SMVGarmentByUnitReportLogic = serviceProvider.GetService <SMVGarmentByUnitReportLogic>();
 }
        protected virtual Mock <IServiceProvider> GetServiceProviderMock(SalesDbContext dbContext)
        {
            var serviceProviderMock = new Mock <IServiceProvider>();

            IIdentityService identityService = new IdentityService {
                Username = "******"
            };

            CostCalculationGarmentMaterialLogic costCalculationGarmentMaterialLogic = new CostCalculationGarmentMaterialLogic(serviceProviderMock.Object, identityService, dbContext);
            CostCalculationGarmentLogic         costCalculationGarmentLogic         = new CostCalculationGarmentLogic(costCalculationGarmentMaterialLogic, serviceProviderMock.Object, identityService, dbContext);
            SMVGarmentByUnitReportLogic         smvGarmentByUnitReportLogic         = new SMVGarmentByUnitReportLogic(identityService, dbContext);

            GarmentPreSalesContractLogic garmentPreSalesContractLogic = new GarmentPreSalesContractLogic(identityService, dbContext);

            var azureImageFacadeMock = new Mock <IAzureImageFacade>();

            azureImageFacadeMock
            .Setup(s => s.DownloadImage(It.IsAny <string>(), It.IsAny <string>()))
            .ReturnsAsync("");

            serviceProviderMock
            .Setup(x => x.GetService(typeof(IdentityService)))
            .Returns(identityService);
            serviceProviderMock
            .Setup(x => x.GetService(typeof(CostCalculationGarmentLogic)))
            .Returns(costCalculationGarmentLogic);
            serviceProviderMock
            .Setup(x => x.GetService(typeof(GarmentPreSalesContractLogic)))
            .Returns(garmentPreSalesContractLogic);

            serviceProviderMock
            .Setup(x => x.GetService(typeof(SMVGarmentByUnitReportLogic)))
            .Returns(smvGarmentByUnitReportLogic);

            serviceProviderMock
            .Setup(x => x.GetService(typeof(IAzureImageFacade)))
            .Returns(azureImageFacadeMock.Object);

            return(serviceProviderMock);
        }