Example #1
0
        protected override async void Insert()
        {
            await categoryBusiness.InsertCategory(new Category
            {
                Name        = name,
                Description = description
            });

            Name        = "";
            Description = "";

            GetAllAsync();
        }