Beispiel #1
0
        public ServiceFeeConfigModel GetServiceFeeConfigBySfcId(int sfcId)
        {
            ServiceFeeConfigEntity entity = _dal.Query(sfcId);

            if (entity == null)
            {
                return(null);
            }
            return(Mapper.Map <ServiceFeeConfigEntity, ServiceFeeConfigModel>(entity));
        }
Beispiel #2
0
 public int Delete(ServiceFeeConfigEntity t)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 public int Update(ServiceFeeConfigEntity t, string[] properties = null)
 {
     throw new NotImplementedException();
 }