Ejemplo n.º 1
0
 public bool DeleteCommodityType(CommodityType commodityType)
 {
     if (commodityType == null) return false;
     _unitOfWork.CommodityTypeRepository.Delete(commodityType);
     _unitOfWork.Save();
     return true;
 }
Ejemplo n.º 2
0
 public static CommodityType BindCommodityType(CommodityTypeViewModel commodityTypeViewModel, CommodityType commodityType = null)
 {
     var target = commodityType ?? new CommodityType();
     target.CommodityTypeID = commodityTypeViewModel.CommodityTypeId;
     target.Name = commodityTypeViewModel.Name;
     return target;
 }
Ejemplo n.º 3
0
 public static CommodityTypeViewModel BindCommodityTypeViewModel(CommodityType commodityType)
 {
     return new CommodityTypeViewModel()
                {
                    Name = commodityType.Name,
                    CommodityTypeId = commodityType.CommodityTypeID
                };
 }
Ejemplo n.º 4
0
 public bool EditCommodityType(CommodityType commodityType)
 {
     _unitOfWork.CommodityTypeRepository.Edit(commodityType);
     _unitOfWork.Save();
     return true;
 }