コード例 #1
0
ファイル: CodeBll.cs プロジェクト: Jair333771/logyca
        public ResponseModel GetAllByOwnerId(int id = 0)
        {
            var message = new MessageModel();
            var list    = repo.GetAllByOwnerId(id);

            SetListResponse(list, message);

            return(response);
        }