コード例 #1
0
ファイル: FMController.cs プロジェクト: singlag888/NewWeb
        // DELETE: api/FM/5
        public object Options([FromBody] ServEmail model)
        {
            int result = ServEmailBLL.Delete(model);

            if (result > 0)
            {
                return(new { result = 0 });
            }
            return(new { result = 1 });
        }