Example #1
0
 public void Update(GuvenlikSoru entity)
 {
     _guvenlikSoruDAL.Update(entity);
 }
Example #2
0
        public void DeleteByID(int entityID)
        {
            GuvenlikSoru currentSoru = _guvenlikSoruDAL.Get(a => a.ID == entityID);

            _guvenlikSoruDAL.Remove(currentSoru);
        }
Example #3
0
 public void Insert(GuvenlikSoru entity)
 {
     _guvenlikSoruDAL.Add(entity);
 }
Example #4
0
 public void Delete(GuvenlikSoru entity)
 {
     _guvenlikSoruDAL.Remove(entity);
 }