Aspose.Cells .NET or Aspose.Total

I have two applications that use Aspose. One uses Aspose.Cells and the other is using Aspose.Total. Is it possible to just use the Aspose.Total License for both applications instead of getting a separate license for Aspose.Cells? Or, is there something that I am missing as to why I would need the separate license?
Thank you.

@Margoatl,
Yes, you can use Aspose.Total license in the application which is using Aspose.Cells. Please note that for each Aspose product in a project, you have to load the license separately as shown in the following sample code:

var cellsLicense = new Aspose.Cells.License();
cellsLicense.SetLicense("Aspose.Total.NET.lic");

var wordsLicense = new Aspose.Words.License();
wordsLicense.SetLicense("Aspose.Total.NET.lic");

// and so on