username@email.com
2021-06-28 6ee35d97c90d5aa8860b9c9d6df22f76315515f1
zhengcaioa/Services/SimService.cs
@@ -338,6 +338,17 @@
            return data;
        }
        public SimCostView GetSimCost(string userid, int bill_year, int bill_month)
        {
            var entity = _context.SimCostView.Where(x => x.user_id == userid && x.bill_year == bill_year && x.bill_month  == bill_month).FirstOrDefault();
            return entity;
        }
        #endregion
    }
}