remove operation result
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using _0_Framework_b.Application;
|
||||
using _0_Framework.Application;
|
||||
using Company.Domain.Board;
|
||||
using CompanyManagment.App.Contracts.Board;
|
||||
|
||||
@@ -32,7 +32,7 @@ public class BoardApplication : IBoardApplication
|
||||
_boardRepository.Create(board);
|
||||
_boardRepository.SaveChanges();
|
||||
|
||||
return operation.Succcedded(entityId: board.id);
|
||||
return operation.Succcedded(board.id);
|
||||
}
|
||||
|
||||
public OperationResult Edit(EditBoard command)
|
||||
@@ -51,7 +51,7 @@ public class BoardApplication : IBoardApplication
|
||||
command.ExpertReport,command.File_Id,command.BoardType_Id);
|
||||
_boardRepository.SaveChanges();
|
||||
|
||||
return operation.Succcedded(entityId: board.id);
|
||||
return operation.Succcedded(board.id);
|
||||
}
|
||||
|
||||
public EditBoard GetDetails(long id)
|
||||
|
||||
Reference in New Issue
Block a user