/// <summary>
 /// Фабричный метод
 /// </summary>
 /// <param name="сhapter"></param>
 /// <returns></returns>
 public static UpdateChapter Of(Store.Model.Chapter сhapter) => new UpdateChapter(сhapter);
Example #2
0
 public CreateChapter(Store.Model.Chapter chapter)
 {
     Chapter = chapter;
 }
 /// <summary>
 /// Конструктор
 /// </summary>
 /// <param name="сhapter"></param>
 public UpdateChapter(Store.Model.Chapter сhapter)
 {
     Chapter = сhapter;
 }
Example #4
0
 public static CreateChapter Of(Store.Model.Chapter chapter) => new CreateChapter(chapter);