public Task UpdateAsync(ProductStatusDTO model) { throw new NotImplementedException(); }
public void AddItem(ProductStatusDTO productStatusDTO) { var ProductStatusDTO = Mapper.Map <ProductStatusDTO, ProductStatus>(productStatusDTO); Database.ProductStatuses.Create(ProductStatusDTO); }