ModernWebStore.Domain.Commands.ProductCommands.UpdateProductInfoCommand.UpdateProductInfoCommand C# (CSharp) Method

UpdateProductInfoCommand() public method

public UpdateProductInfoCommand ( int id, string title, string description, int category )
id int
title string
description string
category int
        public UpdateProductInfoCommand(int id, string title, string description, int category)
        {
            this.Id = id;
            this.Title = title;
            this.Description = description;
            this.CategoryId = category;
        }
UpdateProductInfoCommand