TastyDomainDriven.File.FileRecord.FileRecord C# (CSharp) Method

FileRecord() public method

public FileRecord ( byte bytes, string name, long version ) : System
bytes byte
name string
version long
return System
        public FileRecord(byte[] bytes, string name, long version)
        {
            this.Bytes = bytes;
            this.Name = name;
            this.Version = version;
        }

Same methods

FileRecord::FileRecord ( long version ) : System