Files
Backend-Api/CompanyManagment.Application/ChapterAppliction.cs
2024-07-05 21:36:15 +03:30

94 lines
2.6 KiB
C#

using _0_Framework.Application;
using System.Collections.Generic;
using Company.Domain.ChapterAgg;
using CompanyManagment.App.Contracts.Chapter;
namespace CompanyManagment.Application;
public class ChapterAppliction : IChapterApplication
{
private readonly IChapterRepozitory _ChapterRepozitory;
public ChapterAppliction(IChapterRepozitory ChapterRepozitory)
{
_ChapterRepozitory = ChapterRepozitory;
}
public OperationResult Create(CreateChapter command)
{
var oprtaion = new OperationResult();
if (string.IsNullOrWhiteSpace(command.Chapter))
return oprtaion.Failed("ثبت فصل الزامیست");
if (command.Subtitle_Id<=0)
return oprtaion.Failed("انتخاب بخش الزامیست");
var Chapter = new EntityChapter(command.Chapter, command.Subtitle_Id);
_ChapterRepozitory.Create(Chapter);
_ChapterRepozitory.SaveChanges();
return oprtaion.Succcedded();
}
public OperationResult Edit(EditChapter command)
{
var oprtaion = new OperationResult();
var ChapterEdit = _ChapterRepozitory.Get(command.Id);
if (string.IsNullOrWhiteSpace(command.Chapter))
return oprtaion.Failed("ثبت فصل الزامیست");
if (command.Subtitle_Id <= 0)
return oprtaion.Failed("انتخاب بخش الزامیست");
ChapterEdit.Edit( command.Chapter, command.Subtitle_Id);
_ChapterRepozitory.SaveChanges();
return oprtaion.Succcedded();
}
public EditChapter GetDetails( long id)
{
return _ChapterRepozitory.GetDetails(id);
}
public List<ChapterViewModel> Search(ChapterSearchModel SearchModel)
{
return _ChapterRepozitory.Search(SearchModel);
}
public List<ChapterViewModel> GetAllChapter()
{
return _ChapterRepozitory.GetAllChapter();
}
public OperationResult Active(long id)
{
var opration = new OperationResult();
var Chapter = _ChapterRepozitory.Get(id);
if (Chapter == null)
return opration.Failed("رکورد مورد نظر یافت نشد");
Chapter.Active();
_ChapterRepozitory.SaveChanges();
return opration.Succcedded();
}
public OperationResult DeActive(long id)
{
var opration = new OperationResult();
var Chapter = _ChapterRepozitory.Get(id);
if (Chapter == null)
return opration.Failed("رکورد مورد نظر یافت نشد");
Chapter.DeActive();
_ChapterRepozitory.SaveChanges();
return opration.Succcedded();
}
}