update
This commit is contained in:
@@ -5,7 +5,7 @@ using MyOffice.Services.Account.Domain;
|
||||
public class MotionRequest
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public string Motion { get; set; } = null!;
|
||||
public string Item { get; set; } = null!;
|
||||
public string? Description { get; set; }
|
||||
public decimal? Plus { get; set; }
|
||||
public decimal? Minus { get; set; }
|
||||
@@ -18,7 +18,7 @@ public static class MotionRequestExtension
|
||||
return new MotionAddUpdate
|
||||
{
|
||||
Date = input.Date,
|
||||
Motion = input.Motion,
|
||||
Item = input.Item,
|
||||
Minus = input.Minus ?? 0,
|
||||
Plus = input.Plus ?? 0,
|
||||
Description = input.Description,
|
||||
|
||||
Reference in New Issue
Block a user