Print checkout bug fix - task counter bug fixed - RollCalEmployeeUpload HasEmployee metof aded

This commit is contained in:
SamSys
2024-10-30 21:22:09 +03:30
parent 5df6b99cb1
commit 456025251c
59 changed files with 8447 additions and 352 deletions

View File

@@ -0,0 +1,36 @@
using System;
using _0_Framework.Application;
using _0_Framework.Domain;
namespace Company.Domain.AndroidApkVersionAgg;
public class AndroidApkVersion:EntityBase
{
private AndroidApkVersion () { }
public AndroidApkVersion( string versionName,string versionCode, IsActive isActive, string path)
{
VersionName = versionName;
VersionCode = versionCode;
IsActive = isActive;
Path = path;
Title = $"Gozareshgir-{versionName}-{CreationDate:g}";
}
public string Title { get; private set; }
public string VersionName{ get; private set; }
public string VersionCode{ get; private set; }
public IsActive IsActive { get; private set; }
public string Path { get; set; }
public void Active()
{
IsActive = IsActive.True;
}
public void DeActive()
{
IsActive = IsActive.False;
}
}