Пример #1
0
        public void Remove(Model.StockMaterial entity)
        {
            //if (entity == null)
            //    throw new ArgumentNullException("entity");

            //Remove(entity.Id);
        }
Пример #2
0
 public void Update(Model.StockMaterial entity)
 {
     if (entity == null)
     {
         throw new ArgumentNullException("entity");
     }
     //string update = string.Format(@"");
     //Connection.Execute(update, entity, transaction: Transaction);
     base.Edit(entity);
 }
Пример #3
0
 public void Add(Model.StockMaterial entity)
 {
     if (entity == null)
     {
         throw new ArgumentNullException("entity");
     }
     //string insert = string.Format(@"");
     //Connection.Execute(insert, entity, Transaction);
     base.Insert(entity);
 }