public ActionResult ViewProductDescription(int id)
 {
     if (id > 0)
     {
         var model = new ProductDescriptionService().GetProductDescription(id);
         return(View(model));
     }
     return(View());
 }
        public async void Get_null_record()
        {
            var mock = new ServiceMockFacade <IProductDescriptionRepository>();

            mock.RepositoryMock.Setup(x => x.Get(It.IsAny <int>())).Returns(Task.FromResult <ProductDescription>(null));
            var service = new ProductDescriptionService(mock.LoggerMock.Object,
                                                        mock.RepositoryMock.Object,
                                                        mock.ModelValidatorMockFactory.ProductDescriptionModelValidatorMock.Object,
                                                        mock.BOLMapperMockFactory.BOLProductDescriptionMapperMock,
                                                        mock.DALMapperMockFactory.DALProductDescriptionMapperMock,
                                                        mock.BOLMapperMockFactory.BOLProductModelProductDescriptionCultureMapperMock,
                                                        mock.DALMapperMockFactory.DALProductModelProductDescriptionCultureMapperMock);

            ApiProductDescriptionResponseModel response = await service.Get(default(int));

            response.Should().BeNull();
            mock.RepositoryMock.Verify(x => x.Get(It.IsAny <int>()));
        }
        public async void ProductModelProductDescriptionCulturesByProductDescriptionID_Not_Exists()
        {
            var mock = new ServiceMockFacade <IProductDescriptionRepository>();

            mock.RepositoryMock.Setup(x => x.ProductModelProductDescriptionCulturesByProductDescriptionID(default(int), It.IsAny <int>(), It.IsAny <int>())).Returns(Task.FromResult <List <ProductModelProductDescriptionCulture> >(new List <ProductModelProductDescriptionCulture>()));
            var service = new ProductDescriptionService(mock.LoggerMock.Object,
                                                        mock.RepositoryMock.Object,
                                                        mock.ModelValidatorMockFactory.ProductDescriptionModelValidatorMock.Object,
                                                        mock.BOLMapperMockFactory.BOLProductDescriptionMapperMock,
                                                        mock.DALMapperMockFactory.DALProductDescriptionMapperMock,
                                                        mock.BOLMapperMockFactory.BOLProductModelProductDescriptionCultureMapperMock,
                                                        mock.DALMapperMockFactory.DALProductModelProductDescriptionCultureMapperMock);

            List <ApiProductModelProductDescriptionCultureResponseModel> response = await service.ProductModelProductDescriptionCulturesByProductDescriptionID(default(int));

            response.Should().BeEmpty();
            mock.RepositoryMock.Verify(x => x.ProductModelProductDescriptionCulturesByProductDescriptionID(default(int), It.IsAny <int>(), It.IsAny <int>()));
        }
        public async void Create()
        {
            var mock  = new ServiceMockFacade <IProductDescriptionRepository>();
            var model = new ApiProductDescriptionRequestModel();

            mock.RepositoryMock.Setup(x => x.Create(It.IsAny <ProductDescription>())).Returns(Task.FromResult(new ProductDescription()));
            var service = new ProductDescriptionService(mock.LoggerMock.Object,
                                                        mock.RepositoryMock.Object,
                                                        mock.ModelValidatorMockFactory.ProductDescriptionModelValidatorMock.Object,
                                                        mock.BOLMapperMockFactory.BOLProductDescriptionMapperMock,
                                                        mock.DALMapperMockFactory.DALProductDescriptionMapperMock,
                                                        mock.BOLMapperMockFactory.BOLProductModelProductDescriptionCultureMapperMock,
                                                        mock.DALMapperMockFactory.DALProductModelProductDescriptionCultureMapperMock);

            CreateResponse <ApiProductDescriptionResponseModel> response = await service.Create(model);

            response.Should().NotBeNull();
            mock.ModelValidatorMockFactory.ProductDescriptionModelValidatorMock.Verify(x => x.ValidateCreateAsync(It.IsAny <ApiProductDescriptionRequestModel>()));
            mock.RepositoryMock.Verify(x => x.Create(It.IsAny <ProductDescription>()));
        }
        public async void All()
        {
            var mock    = new ServiceMockFacade <IProductDescriptionRepository>();
            var records = new List <ProductDescription>();

            records.Add(new ProductDescription());
            mock.RepositoryMock.Setup(x => x.All(It.IsAny <int>(), It.IsAny <int>())).Returns(Task.FromResult(records));
            var service = new ProductDescriptionService(mock.LoggerMock.Object,
                                                        mock.RepositoryMock.Object,
                                                        mock.ModelValidatorMockFactory.ProductDescriptionModelValidatorMock.Object,
                                                        mock.BOLMapperMockFactory.BOLProductDescriptionMapperMock,
                                                        mock.DALMapperMockFactory.DALProductDescriptionMapperMock,
                                                        mock.BOLMapperMockFactory.BOLProductModelProductDescriptionCultureMapperMock,
                                                        mock.DALMapperMockFactory.DALProductModelProductDescriptionCultureMapperMock);

            List <ApiProductDescriptionResponseModel> response = await service.All();

            response.Should().HaveCount(1);
            mock.RepositoryMock.Verify(x => x.All(It.IsAny <int>(), It.IsAny <int>()));
        }
        public async void Delete()
        {
            var mock  = new ServiceMockFacade <IProductDescriptionRepository>();
            var model = new ApiProductDescriptionRequestModel();

            mock.RepositoryMock.Setup(x => x.Delete(It.IsAny <int>())).Returns(Task.CompletedTask);
            var service = new ProductDescriptionService(mock.LoggerMock.Object,
                                                        mock.RepositoryMock.Object,
                                                        mock.ModelValidatorMockFactory.ProductDescriptionModelValidatorMock.Object,
                                                        mock.BOLMapperMockFactory.BOLProductDescriptionMapperMock,
                                                        mock.DALMapperMockFactory.DALProductDescriptionMapperMock,
                                                        mock.BOLMapperMockFactory.BOLProductModelProductDescriptionCultureMapperMock,
                                                        mock.DALMapperMockFactory.DALProductModelProductDescriptionCultureMapperMock);

            ActionResponse response = await service.Delete(default(int));

            response.Should().NotBeNull();
            mock.RepositoryMock.Verify(x => x.Delete(It.IsAny <int>()));
            mock.ModelValidatorMockFactory.ProductDescriptionModelValidatorMock.Verify(x => x.ValidateDeleteAsync(It.IsAny <int>()));
        }
        public JsonResult ProductDescriptionsByPaging(DataTablesPaging request)
        {
            var view = new ProductDescriptionService().GetProductDescriptionsByPaging(request);

            return(Json(view, JsonRequestBehavior.AllowGet));
        }
        public JsonResult ProductDescriptions()
        {
            var items = new ProductDescriptionService().GetProductDescriptions();

            return(Json(items, JsonRequestBehavior.AllowGet));
        }
Пример #9
0
 public ProductDescriptionsController(ProductDescriptionService service)
 {
     _service = service;
 }