public Task UpdateAsync(ProductStatusDTO model)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
        public void AddItem(ProductStatusDTO productStatusDTO)
        {
            var ProductStatusDTO = Mapper.Map <ProductStatusDTO, ProductStatus>(productStatusDTO);

            Database.ProductStatuses.Create(ProductStatusDTO);
        }