コード例 #1
0
ファイル: CaseCrud.cs プロジェクト: Kamanuk27/LawHouse
        internal int CloseCase(int id, decimal totalPrice, DateTime endDate)
        {
            CaseM c = new CaseM();

            c.Id         = id;
            c.TotalPrice = totalPrice;
            c.EndDate    = endDate;
            return(_dbCase.CloseCase(c));
        }