Example #1
0
        public bool Add(CountyVM countyVm)
        {
            var entity = new County();

            entity = ToCountyInsertEntity(countyVm);
            return(_countyDal.Add(entity));
        }
Example #2
0
 public bool Add(County entity)
 {
     return(_countyDal.Add(entity) > 0);
 }